home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / rjs.lha / RJS / String / src / pos.C < prev    next >
C/C++ Source or Header  |  1991-06-14  |  193b  |  14 lines

  1. #include "String.h"
  2.  
  3. RJS_SubString &RJS_SubString::pos(int &pos)
  4. {
  5.   pos=int(sd.data)-int(str->sd.data); 
  6.   return *this;
  7. }
  8.  
  9. RJS_String &RJS_String::pos(int &pos)
  10. {
  11.   pos=0; 
  12.   return *this;
  13. }
  14.